home *** CD-ROM | disk | FTP | other *** search
/ PC World 2007 January / PCWorld_2007-01_cd.bin / v cisle / autoit / autoit-v3.2.0.1-setup.exe / Examples / Helpfile / FileGetTime.au3 < prev    next >
Text File  |  2006-06-17  |  180b  |  7 lines

  1. $t =  FileGetTime(@Windowsdir & "\Notepad.exe", 1)
  2.  
  3. If Not @error Then
  4.     $yyyymd = $t[0] & "/" & $t[1] & "/" & $t[2]
  5.     MsgBox(0, "Creation date of notepad.exe", $yyyymd)
  6. EndIf
  7.